home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / giochi / chinacha.lha / ChinaChallenge3 / C++ / makefile < prev    next >
Makefile  |  1995-09-20  |  255b  |  18 lines

  1.  
  2. CC        = gcc
  3.  
  4. CFLAGS        = -O2 -msmall-code -fbaserel -fno-builtin
  5.  
  6. CXXFLAGS    = -V2.3.3 $(CFLAGS)
  7.  
  8. LFLAGS        = -noixemul -fbaserel
  9.  
  10. LDLIBS        = -lamiga -lmath
  11.  
  12. OBJS        = cc3.o stubs.o ../c/img.o
  13.  
  14. # the game :)
  15.  
  16. CC3:        $(OBJS)
  17.         $(CC) $(LFLAGS) -o $@ $(OBJS) $(LDLIBS)
  18.